home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / jars / QuickNotepad.jar / changes42.txt < prev    next >
Text File  |  2012-05-31  |  902b  |  27 lines

  1. $Id$
  2.  
  3. Changes made to QuickNotepad plugin for jEdit 4.2:
  4.  
  5. (1) The following property was added:
  6.  
  7.   plugin.QuickNotepadPlugin.activate=defer
  8.  
  9. This informs jEdit the plugin is using the new API, and that it should only be
  10. loaded the first time it is accessed by the user.
  11.  
  12. (2) The createMenuItems() method of the plugin core class has been removed. The
  13. plugin menu is now specified with the following property:
  14.  
  15.   plugin.QuickNotepadPlugin.menu=... list of menu items ...
  16.  
  17. (3) The createOptionPanes() method of the plugin core class has been removed. The plugin option pane is now specified with the following property:
  18.  
  19.   plugin.QuickNotepadPlugin.option-pane=quicknotepad
  20.  
  21. (4) The QuickNotepad class (the dockable window) implements the new DefaultFocusComponent interface, and the following method was added to this class:
  22.  
  23.   public void focusOnDefaultComponent()
  24.   {
  25.     textArea.requestFocus();
  26.   }
  27.